home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Telephone Manager / Stiletto Sources / BuildScripts / StilettoVars < prev    next >
Encoding:
Text File  |  1995-07-05  |  3.3 KB  |  98 lines  |  [TEXT/MPS ]

  1. ##################################################################################################
  2. ##                                                                                                ##
  3. ##    Program Name:    Stiletto                                                                    ##
  4. ##                                                                                                ##
  5. ##    File Name:        StilettoVars                                                                ##
  6. ##                                                                                                ##
  7. ##    © Apple Computer, Inc. 1992-1995                                                            ##
  8. ##    All Rights Reserved                                                                            ##
  9. ##                                                                                                ##
  10. ##    Revision History:                                                                            ##
  11. ##                                                                                                ##
  12. ##        Date        Who                    Modification                                            ##
  13. ##                                                                                                ##
  14. ##        1992-10-26    Chris Halim            Original version                                        ##
  15. ##        1995-06-26    Jaakko Railo        Version 2.0                                                ##
  16. ##                                                                                                ##
  17. ##################################################################################################
  18.  
  19.  
  20. #    {StilettoDir} - directory containing Stiletto files.
  21.             Set StilettoDir `Directory`:        # get the parent directory
  22.             Export StilettoDir
  23.  
  24. #    {ScriptsDir} - directory containing Stiletto build scripts.
  25.             Set ScriptsDir "{StilettoDir}BuildScripts:"
  26.             Export ScriptsDir
  27.  
  28. #    {SOURCESDir} - directory containing Stiletto sources.
  29.             Set SOURCESDir "{StilettoDir}Sources:"
  30.             Export SOURCESDir
  31.  
  32. #    {ModuleSourcesDir} - directory containing modules sources.
  33.             Set ModuleSourcesDir "{StilettoDir}ModuleSources:"
  34.             Export ModuleSourcesDir
  35.  
  36. #    {TelephoneIncludes} - directory containing Telephone headers.
  37.         if ("{TelephoneIncludes}" == "")                    # if not already defined
  38.             Set TelephoneIncludes "{StilettoDir}Telephones:"
  39.             Export TelephoneIncludes
  40.         end
  41.  
  42. #    {TelephoneToolIncludes} - directory containing Telephone tool headers.
  43.         if ("{TelephoneToolIncludes}" == "")                    # if not already defined
  44.             Set TelephoneToolIncludes "{StilettoDir}Telephones:"
  45.             Export TelephoneToolIncludes
  46.         end
  47.  
  48. #    {TelephoneLibraries} - directory containing Telephone libraries.
  49.         if ("{TelephoneLibraries}" == "")                    # if not already defined
  50.             Set TelephoneLibraries "{StilettoDir}Telephones:"
  51.             Export TelephoneLibraries
  52.         end
  53.  
  54. #    {TARGET68KDir} - directory to place 68K target files.
  55.             Set TARGET68KDir "{StilettoDir}Target:"
  56.             Export TARGET68KDir
  57.  
  58. #    {TARGETPPCDir} - directory to place PPC target files.
  59.             Set TARGETPPCDir "{StilettoDir}Target:"
  60.             Export TARGETPPCDir
  61.  
  62. #    {Modules68KDir} - directory to place 68K target modules.
  63.             Set Modules68KDir "{TARGET68KDir}Modules-68K:"
  64.             Export Modules68KDir
  65.  
  66. #    {ModulesPPCDir} - directory to place PPC target modules.
  67.             Set ModulesPPCDir "{TARGETPPCDir}Modules-PPC:"
  68.             Export ModulesPPCDir
  69.  
  70. #    {HEADERSDir} - directory containing Stiletto headers.
  71.             Set HEADERSDir "{StilettoDir}Headers:"
  72.             Export HEADERSDir
  73.  
  74. #    {REZDir} - directory containing resource files.
  75.             Set REZDir "{StilettoDir}Rez:"
  76.             Export REZDir
  77.  
  78. #    {TEMPDir} - directory to place temporary files (objects files).
  79.         if ("{TEMPDir}" == "")                    # if not already defined
  80.             Set TEMPDir "{StilettoDir}Temp:"
  81.             Export TEMPDir
  82.         end
  83.             
  84. #    {OBJECTS68KDir} - directory to place 68K object files.
  85.             Set OBJECTS68KDir "{TEMPDir}Objects68K:"
  86.             Export OBJECTS68KDir
  87.  
  88. #    {OBJECTSPPCDir} - directory to place PPC object files.
  89.             Set OBJECTSPPCDir "{TEMPDir}ObjectsPPC:"
  90.             Export OBJECTSPPCDir
  91.  
  92. #    {DEBUGOptions} - other C compiler options to be used for this build.
  93.         if ("{DEBUGOptions}" == "")                    # if not already defined
  94.             Set DEBUGOptions "-d qDEBUG"
  95. #            Set DEBUGOptions ""
  96.             Export DEBUGOptions
  97.         end
  98.